home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / ms_dos / disgas / makefile < prev    next >
Encoding:
Makefile  |  1993-07-08  |  231 b   |  10 lines

  1. OBJS = disgas.obj operand.obj mntable.obj
  2. disgas.exe : $(OBJS)
  3.     lcc -o disgas.exe $(OBJS) -lintlib
  4. disgas.obj : disgas.c
  5.     lcc -c disgas.c
  6. operand.obj : operand.c
  7.     lcc -c operand.c
  8. mntable.obj : mntable.c
  9.     lcc -c mntable.c
  10.